home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The CIA Papers
/
The CIA Papers.iso
/
go.bat
< prev
next >
Wrap
DOS Batch File
|
1994-08-12
|
394b
|
38 lines
install
cls
:start
echo OFF
echo Choose a book
echo .
echo a. The CIA a Forgotten History
echo .
echo b. The CIA World Fact book
echo .
echo x. Quit to DOS
echo .
CHOOSE - What do you want to do?
IF ERRORLEVEL 24 GOTO 24
IF ERRORLEVEL 2 GOTO 2
IF ERRORLEVEL 1 GOTO 1
:24
CLS
GOTO END
REM blum
:1
call go
goto end
REM worldfact
:2
wfb
goto end
:end